home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Mac Bible 6
/
The Mac Bible 6 CD-ROM (Peachpit Press)(1996).iso
/
EarDemo.dir 5.0
/
00037_Script_37
< prev
next >
Wrap
Text File
|
1996-08-19
|
667b
|
27 lines
on mouseDown
global gLastRollover
set gLastRollover = the clickOn
puppetsprite gLastRollover, 1
repeat while the mousedown
if rollover(gLastRollover) then
set the castnum of sprite (gLastRollover) = the number of cast ((gLastRollover)&"hi")
else
set the castnum of sprite (gLastRollover) = the number of cast ((gLastRollover)&"or")
end if
updatestage
end repeat
end
on mouseUp
global gLastRollover
if NOT rollover(gLastRollover) then
pupsOff
else
puppetsound "Switch Flick"
updatestage
repeat while soundBusy (1)
end repeat
PupsOff
go "end"
end if
end